home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / mono-jit.postinst < prev    next >
Encoding:
Text File  |  2007-02-27  |  482 b   |  13 lines

  1. #!/bin/sh -e
  2.  
  3. # if we're configuring, /usr/share/doc/mono-jit is a directory,
  4. # and isn't a symlink, replace it with a symlink to mono-common
  5. if test "$1" = "configure" && test -d /usr/share/doc/mono-jit && ! test -h /usr/share/doc/mono-jit ; then
  6.         rmdir /usr/share/doc/mono-jit
  7.         ln -s mono-common /usr/share/doc/mono-jit
  8. fi
  9.  
  10. update-alternatives --install /usr/bin/cli cli /usr/bin/mono 14 --slave /usr/share/man/man1/cli.1.gz cli.1.gz /usr/share/man/man1/mono.1.gz
  11.  
  12.  
  13.